projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b0383de
)
(compilation-error-regexp-alist): New item, for Oracle compiler.
author
Richard M. Stallman
<rms@gnu.org>
Fri, 27 Jun 1997 22:35:21 +0000
(22:35 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Fri, 27 Jun 1997 22:35:21 +0000
(22:35 +0000)
lisp/progmodes/compile.el
patch
|
blob
|
history
diff --git
a/lisp/progmodes/compile.el
b/lisp/progmodes/compile.el
index c5233444f15e312d391fb534dada9f43a6d13f7b..3662e935dbd09b4c891db91d963f706c94a2439b 100644
(file)
--- a/
lisp/progmodes/compile.el
+++ b/
lisp/progmodes/compile.el
@@
-262,6
+262,11
@@
of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2)
;; Perl -w:
;; syntax error at automake line 922, near "':'"
(".* at \\([^ ]+\\) line \\([0-9]+\\)," 1 2)
+
+ ;; Oracle pro*c:
+ ;; Semantic error at line 528, column 5, file erosacqdb.pc:
+ ("Semantic error at line \\([0-9]+\\), column \\([0-9]+\\), file \\(.*\\):"
+ 3 1 2)
)
"Alist that specifies how to match errors in compiler output.
Each elt has the form (REGEXP FILE-IDX LINE-IDX [COLUMN-IDX FILE-FORMAT...])